home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / bin / byobu-status < prev    next >
Text File  |  2009-10-11  |  2KB  |  63 lines

  1. #!/bin/sh -e
  2. #
  3. #    byobu-status
  4. #    Copyright (C) 2008 Canonical Ltd.
  5. #
  6. #    Authors: Dustin Kirkland <kirkland@canonical.com>
  7. #
  8. #    This program is free software: you can redistribute it and/or modify
  9. #    it under the terms of the GNU General Public License as published by
  10. #    the Free Software Foundation, version 3 of the License.
  11. #
  12. #    This program is distributed in the hope that it will be useful,
  13. #    but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. #    GNU General Public License for more details.
  16. #
  17. #    You should have received a copy of the GNU General Public License
  18. #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
  19.  
  20. PKG="byobu"
  21.  
  22. find_script () {
  23.     # Allow for local status scripts
  24.     if [ -x "$HOME/.$PKG/bin/$1" ]; then
  25.         echo "$HOME/.$PKG/bin/$1"
  26.     elif [ -x "/usr/lib/$PKG/$1" ]; then
  27.         echo "/usr/lib/$PKG/$1"
  28.     else
  29.         echo "/bin/true"
  30.     fi
  31. }
  32.  
  33. # Source configurations
  34. [ -r "/etc/$PKG/statusrc" ] && . "/etc/$PKG/statusrc"
  35. [ -r "$HOME/.$PKG/status" ] && . "$HOME/.$PKG/status"
  36. [ -r "$HOME/.$PKG/statusrc" ] && . "$HOME/.$PKG/statusrc"
  37.  
  38. export P="$1"
  39. if [ "$P" = "--detail" ]; then
  40.     VER=
  41.     if which dpkg-query >/dev/null; then
  42.         VER=`dpkg-query --show $PKG | awk '{print "-" $2 }'`
  43.     fi
  44.     printf "$PKG$VER Detailed Status Navigation\n  Expand all - zr\t\tCollapse all - zm\n  Expand one - zo\t\tCollapse one - zc\n\n"
  45.     if [ -d "$HOME/.$PKG/bin" ]; then
  46.         DIR="$HOME/.$PKG/bin"
  47.     else
  48.         DIR="/usr/lib/$PKG"
  49.     fi
  50.     for i in `ls "$DIR"`; do
  51.         [ "$i" = "menu" ] && continue
  52.         script=`find_script $i`
  53.         short=`$script --short | sed 's/^\s*//' | sed 's/\s*$//' | sed 's/.{[^}]*}//g'` || true
  54.         detail=`$script --detail | sed '/^$/d' | sed 's/^/\t/g'` || true
  55.         printf "%s\n\t(%s)\n" "$short" "$i"
  56.         [ -n "$detail" ] && printf "%s\n" "$detail"
  57.     done
  58. else
  59.         eval x="\$$P" || exit 1
  60.         [ "$x" = "1" ] || exit 0
  61.         . $(find_script "$P")
  62. fi
  63.